home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / DbDataUpdater.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  605 b   |  16 lines

  1. package symantec.itools.db.awt;
  2.  
  3. public interface DbDataUpdater {
  4.    void setDbDataSource(DbDataSource var1);
  5.  
  6.    void deleteRow(int var1) throws TypeNotSupported;
  7.  
  8.    void undeleteRow(int var1) throws TypeNotSupported;
  9.  
  10.    void save() throws TypeNotSupported;
  11.  
  12.    void insertRow(int var1) throws TypeNotSupported;
  13.  
  14.    int appendRow() throws TypeNotSupported;
  15. }
  16.